home *** CD-ROM | disk | FTP | other *** search
- SEQ formatted GEOS file V1.0
- Olivetti PR2300
- OP V2.0 or higher
- #$Main
- BLASTER'S CONVERTER V2.5
- ASCII
- UTILITY
- COPE SOURCE V1.0
- DL870517
- COPE EDITOR V1.0
- .START $5000 ; Start address in memory for loading program.
- .INIT CodeHere ; Initialization routine to call after loading.
- .TYPE DESK_ACC ; Type of Program, see ZeroPage Equates for details.
- .NAME geoHexCalc V1.0 ; Permanent Name of program
- .Author Bill Sharp ; Authors name
- ; Icon data Table, this is optional
- ; use can use the icon editor(DeskPack1) to change the
- ; icon later if you wish
- .Icon $FF,$FF,$FF,$80,0,1,$8F,$FF,$F9,$80,0
- 1,$87,$77,$71,$85,$55,$51,$87,$77,$71,$80,0,1,$87,$77,$71
- $85,$55,$51,$87,$77,$71,$80,0,1,$87,$77,$71,$85,$55,$51,$87
- $77,$71,$80,0,1,$87,$77,$71,$85,$55,$51,$87,$77,$71,$80,0,1,$FF,$FF,$FF
- ; now the Equates files
- .Include ZeroPage
- .Include Routines
- .Byte 'Copyright 1987 '
- .Byte 'by '
- .Byte 'Bill Sharp Computing '
- .Byte 'All Rights Reserved '
- .Byte 'Special thanks to Pamela Pardue, my parents, and God.'
- ; This is where the program starts
- CodeHere
- .Include Main
- .Include UTILITY
- .Include ASCII
- .Include MATH
- .Include DISPLAY
- Endcode ; Label is used for reference of highest memory loacation
-